* {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    min-height: 100vh;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;

}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img,
input {
    border: 0;
}

.content-wrap {
    padding-bottom: 30px;
    transition: all .2s linear;
    min-height: calc(100vh - (100vw / 192 * 30) - 50px - 144px - 164px);
    background: #F9FBFE;
}

.content {
    height: auto;
    margin: 0 auto;
}

.page-location {
    width: 100%;
    font-size: 16px;
    color: #555555;
    letter-spacing: 1px;
    text-align: left;
    padding: 30px 0;
    overflow: hidden;
}

.page-location>a {
    color: #555555;
}

@media(min-width: 1250px) {
    .content {
        width: 1200px;
        transition: all .2s linear;
    }
}

@media(min-width: 1050px) and (max-width:1249px) {
    .content {
        width: 1000px;
        transition: all .2s linear;
    }
}

@media(min-width: 850px) and (max-width:1049px) {
    .content {
        width: 800px;
        transition: all .2s linear;
    }
}

@media(max-width: 849px) {
    .content-wrap {
        padding: 0 3vw 5vw;
        transition: all .2s linear;
        min-height: calc(100vh - (100vw / 192 * 30) - 20vw - 22vw);
    }

    .page-location {
        font-size: 1.9vw;
        padding: 3.5vw 0;
    }
}

.show {
    display: block;
}

.hide {
    display: none;
}

.line-1 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}